home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue56
/
VFI
/
Listing4.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-02-29
|
346 b
|
15 lines
TBasicFormProperties = class(TComponent)
private
FEnterAsTab: boolean;
public
procedure Loaded; override;
published
property EnterAsTab: boolean read FEnterAsTab write FEnterAsTab;
end;
procedure TBasicFormProperties.Loaded;
begin
inherited;
if Owner is TBasicForm then
TBasicForm(Owner).EnterAsTab:=FEnterAsTab;
end;